home *** CD-ROM | disk | FTP | other *** search
- {
- (C) Paul Alan Freshney 2006
- (Based on an Indy Client Demo)
-
- Last Modified: January 29th 2006
-
- This code is free to use as you wish. Please do not distribute this code without
- authorisation from myself. We are free to distribute versions of CerberusNET as
- you wish as long as you link to "www.paulalanfreshney.com/cerberus" somewhere
- within the application!
-
- 51
- }
-
- unit about;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, Buttons, StdCtrls, ExtCtrls;
-
- type
- TfrmAbout = class(TForm)
- Image1: TImage;
- Image2: TImage;
- Label1: TLabel;
- Label2: TLabel;
- SpeedButton1: TSpeedButton;
- Bevel1: TBevel;
- Label3: TLabel;
- procedure SpeedButton1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- frmAbout: TfrmAbout;
-
- implementation
-
- {$R *.dfm}
-
- procedure TfrmAbout.SpeedButton1Click(Sender: TObject);
- begin
- Close;
- end;
-
- end.
-